home *** CD-ROM | disk | FTP | other *** search
/ CD Pro / CD Pro.iso / Lan / Intel558 / EXAMPLES.TXT < prev    next >
Text File  |  1997-07-01  |  2KB  |  66 lines

  1.  
  2. ;- This file gives examples of load and bind statements to 
  3. ;- add to your AUTOEXEC.NCF and STARTUP.NCF files to set up 
  4. ;- Adapter Fault Tolerance on Intel EtherExpress(TM)
  5. ;- PRO/100+ TX PCI Adapters.
  6.  
  7.  
  8.  
  9. ;- Setting up Adapter Fault Tolerance
  10. ;- ==================================
  11.  
  12.  
  13. ;- Copy the load statements below into the appropriate
  14. ;- files and customize them for your server. Parameters for
  15. ;- these statements are defined in your user documentation 
  16. ;- and in the AFT readme files.
  17.  
  18.  
  19.  
  20. ;- Copy the following statement into your STARTUP.NCF file:
  21.  
  22. ;- Load Adapter Fault Tolerance
  23.  
  24. load aft
  25.  
  26.  
  27. ;- Copy the rest of the load statments into your
  28. ;- AUTOEXEC.NCF file, and customize them for your server:
  29.  
  30.  
  31. ;- Load LAN driver on 1st Adapter
  32. load e100b slot=7 frame=ethernet_802.2 name=pri_802.2
  33. load e100b slot=7 frame=ethernet_802.3 name=pri_802.3
  34. load e100b slot=7 frame=ethernet_snap  name=pri_snap
  35. load e100b slot=7 frame=ethernet_ii    name=pri_ii
  36.  
  37. ;- Load LAN driver on 2nd Adapter
  38. load e100b slot=8 frame=ethernet_802.2 name=sec_802.2
  39. load e100b slot=8 frame=ethernet_802.3 name=sec_802.3
  40. load e100b slot=8 frame=ethernet_snap  name=sec_snap
  41. load e100b slot=8 frame=ethernet_ii    name=sec_ii
  42.  
  43.  
  44. ;- Bind ipx to 1st adapter
  45. bind ipx pri_802.2 net=2
  46. bind ipx pri_802.3 net=3
  47. bind ipx pri_snap net=5
  48. bind ipx pri_ii net=11
  49.  
  50.  
  51. ;- Set the 2nd adapter to be an Adapter Fault Tolerance
  52. ;- partner to the first adapter
  53. aft bind 7 8
  54.  
  55.  
  56. ;- Note: No protocols should be bound to the secondary
  57. ;- adapter. All protocol bindings to the primary adapter
  58. ;- will be transferred to the secondary if the primary link
  59. ;- fails.
  60.  
  61.  
  62.  
  63. ;- *********************************************************
  64.  
  65.                                                     ;- v1.01
  66.